home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d18
/
tp5patch.arc
/
TD1PAT.ARC
/
FIXTURBO.1
< prev
next >
Wrap
Text File
|
1991-04-28
|
465b
|
23 lines
;fix for problem with TURBO's standalone debugging option involving
;include files
;convert EXE file to BIN file
ren turbo.exe turbo.bin
;load BIN file into DEBUG
debug turbo.bin
;display registers
r
;assemble at ????:a41e, where ???? = cs+1000h
;e.g., if cs = 37fc, then ???? = 47fc
a ????:a41e
;enter new instruction
cmp si,dx
;enter blank line
;write changes to disk
w
;quit DEBUG
q
;convert BIN file to EXE file
ren turbo.bin turbo.exe